fix: align step names in release workflow — capitalization and dash-separator#28628
Merged
fix: align step names in release workflow — capitalization and dash-separator#28628
Conversation
Agent-Logs-Url: https://github.com/github/gh-aw/sessions/81139c82-7a37-403e-8085-8cdd23dd10ef Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Align step names in release.lock.yml for consistency
fix: align step names in release workflow — capitalization and dash-separator
Apr 26, 2026
pelikhan
approved these changes
Apr 26, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns step names in the release workflow to match the repository’s naming conventions.
Changes:
- Update two GitHub Actions step names in
.github/workflows/release.md(capitalization + remove dash-separated “Notify - …” style). - Regenerate
.github/workflows/release.lock.ymlto reflect the source workflow changes.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/release.md | Renames two workflow steps for consistency and readability. |
| .github/workflows/release.lock.yml | Recompiled lockfile reflecting the updated step names and regenerated identifiers/hashes. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 1
| retention-days: 1 | ||
|
|
||
| - name: Notify - run sync actions and merge PR | ||
| - name: Run sync actions and merge PR |
There was a problem hiding this comment.
This step only writes instructions to $GITHUB_STEP_SUMMARY (i.e., it notifies the operator), but the updated name reads like the workflow will actually run the sync-actions workflow and merge the PR. Consider renaming to something that reflects the step’s behavior (e.g., “Notify to run sync actions and merge PR” / “Write sync-actions instructions”).
Suggested change
| - name: Run sync actions and merge PR | |
| - name: Write sync-actions instructions |
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two step names in
release.mddeviate from the naming conventions used across the rest of the codebase.Changes
release.mdCompute release Config→Compute Release Config(mixed-case artifact name; "Release" is an adjective modifying the proper noun "Config")Notify - run sync actions and merge PR→Run sync actions and merge PR(removes dash-separator pattern, which belongs to workflow names not step names)release.lock.yml— recompiled to reflect source changes